home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Compilers⁄Interps / GCC-2.3.3r12 / Sources / machmode.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-23  |  5.1 KB  |  175 lines  |  [TEXT/MPS ]

  1. /* Machine mode definitions for GNU C-Compiler; included by rtl.h and tree.h.
  2.    Copyright (C) 1991  Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU CC.
  5.  
  6. GNU CC is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. GNU CC is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU CC; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20.  
  21. #ifndef HAVE_MACHINE_MODES
  22.  
  23. /* Strictly speaking, this isn't the proper place to include these definitions,
  24.    but this file is included by every GCC file.
  25.  
  26.    Some systems define these in, e.g., param.h.  We undefine these names
  27.    here to avoid the warnings.  We prefer to use our definitions since we
  28.    know they are correct.  */
  29.  
  30. #undef MIN
  31. #undef MAX
  32.  
  33. #define MIN(X,Y) ((X) < (Y) ? (X) : (Y))
  34. #define MAX(X,Y) ((X) > (Y) ? (X) : (Y))
  35.  
  36. /* Find the largest host integer type and set its size and type.  */
  37.  
  38. #ifndef HOST_BITS_PER_WIDE_INT
  39.  
  40. #if HOST_BITS_PER_LONG > HOST_BITS_PER_INT
  41. #define HOST_BITS_PER_WIDE_INT HOST_BITS_PER_LONG
  42. #define HOST_WIDE_INT long
  43. #else
  44. #define HOST_BITS_PER_WIDE_INT HOST_BITS_PER_INT
  45. #define HOST_WIDE_INT int
  46. #endif
  47.  
  48. #endif
  49.  
  50. /* Define the number of entries in an 8-bit `shorts' array needed to represent
  51.    the largest supported constant, which is twice the width of the largest
  52.    host integer type.  */
  53.  
  54. #ifndef MAX_SHORTS
  55. #define MAX_SHORTS (HOST_BITS_PER_WIDE_INT * 2 / 8)
  56. #endif
  57.  
  58. /* Provide a default way to print an address in hex via printf.  */
  59.  
  60. #ifndef HOST_PTR_PRINTF
  61. #define HOST_PTR_PRINTF sizeof (int) == sizeof (char *) ? "%x" : "%lx"
  62. #endif
  63.  
  64. /* Make an enum class that gives all the machine modes.  */
  65.  
  66. #define DEF_MACHMODE(SYM, NAME, TYPE, SIZE, UNIT, WIDER)  SYM,
  67.  
  68. enum machine_mode {
  69. #include "machmode.def"
  70.  
  71. #ifdef EXTRA_CC_MODES
  72.   EXTRA_CC_MODES,
  73. #endif
  74. #ifdef MPW_C
  75. MAX_MACHINE_MODE, machine_mode_intifier = 1000000 };
  76. #else
  77. MAX_MACHINE_MODE };
  78. #endif
  79.  
  80. #undef DEF_MACHMODE
  81.  
  82. #ifndef PTR_HACK
  83.  
  84. /* If we're not using the code/data pointer hack, then let them collapse into
  85.    Pmode, which eventually becomes SImode. */
  86.  
  87. #define DPmode Pmode
  88. #define TPmode Pmode
  89.  
  90. #endif /* PTR_HACK */
  91.  
  92. #define HAVE_MACHINE_MODES
  93.  
  94. #ifndef NUM_MACHINE_MODES
  95. #define NUM_MACHINE_MODES (int) MAX_MACHINE_MODE
  96. #endif
  97.  
  98. /* Get the name of mode MODE as a string.  */
  99.  
  100. extern char *mode_name[];
  101. #define GET_MODE_NAME(MODE)        (mode_name[(int)(MODE)])
  102.  
  103. enum mode_class { MODE_RANDOM, MODE_INT, MODE_FLOAT, MODE_PARTIAL_INT, MODE_CC,
  104. #ifdef MPW_C
  105.           MODE_COMPLEX_INT, MODE_COMPLEX_FLOAT, MAX_MODE_CLASS, MCLA_intifier = 1000000};
  106. #else
  107.           MODE_COMPLEX_INT, MODE_COMPLEX_FLOAT, MAX_MODE_CLASS};
  108. #endif
  109. /* Get the general kind of object that mode MODE represents
  110.    (integer, floating, complex, etc.)  */
  111.  
  112. extern enum mode_class mode_class[];
  113. #define GET_MODE_CLASS(MODE)        (mode_class[(int)(MODE)])
  114.  
  115. /* Get the size in bytes of an object of mode MODE.  */
  116.  
  117. extern int mode_size[];
  118. #define GET_MODE_SIZE(MODE)        (mode_size[(int)(MODE)])
  119.  
  120. /* Get the size in bytes of the basic parts of an object of mode MODE.  */
  121.  
  122. extern int mode_unit_size[];
  123. #define GET_MODE_UNIT_SIZE(MODE)    (mode_unit_size[(int)(MODE)])
  124.  
  125. /* Get the number of units in the object.  */
  126.  
  127. #define GET_MODE_NUNITS(MODE)  \
  128.   ((GET_MODE_UNIT_SIZE ((MODE)) == 0) ? 0 \
  129.    : (GET_MODE_SIZE ((MODE)) / GET_MODE_UNIT_SIZE ((MODE))))
  130.  
  131. /* Get the size in bits of an object of mode MODE.  */
  132.  
  133. #define GET_MODE_BITSIZE(MODE)  (BITS_PER_UNIT * mode_size[(int)(MODE)])
  134.  
  135. /* Get a bitmask containing 1 for all bits in a word
  136.    that fit within mode MODE.  */
  137.  
  138. #define GET_MODE_MASK(MODE)  \
  139.    ((GET_MODE_BITSIZE (MODE) >= HOST_BITS_PER_WIDE_INT)  \
  140.     ?(HOST_WIDE_INT) ~0 : (((HOST_WIDE_INT) 1 << GET_MODE_BITSIZE (MODE)) - 1))
  141.  
  142. /* Get the next wider natural mode (eg, QI -> HI -> SI -> DI -> TI).  */
  143.  
  144. extern enum machine_mode mode_wider_mode[];
  145. #define GET_MODE_WIDER_MODE(MODE)    (mode_wider_mode[(int)(MODE)])
  146.  
  147. /* Return the mode for data of a given size SIZE and mode class CLASS.
  148.    If LIMIT is nonzero, then don't use modes bigger than MAX_FIXED_MODE_SIZE.
  149.    The value is BLKmode if no other mode is found.  */
  150.  
  151. extern enum machine_mode mode_for_size ();
  152.  
  153. /* Find the best mode to use to access a bit field.  */
  154.  
  155. extern enum machine_mode get_best_mode ();
  156.  
  157. /* Determine alignment, 1<=result<=BIGGEST_ALIGNMENT.  */
  158.  
  159. #define GET_MODE_ALIGNMENT(MODE)   \
  160.   MIN (BIGGEST_ALIGNMENT,        \
  161.        MAX (1, (GET_MODE_UNIT_SIZE (MODE) * BITS_PER_UNIT)))
  162.  
  163. /* For each class, get the narrowest mode in that class.  */
  164.  
  165. extern enum machine_mode class_narrowest_mode[];
  166. #define GET_CLASS_NARROWEST_MODE(CLASS) class_narrowest_mode[(int)(CLASS)]
  167.  
  168. /* Define the integer modes whose sizes are BITS_PER_UNIT
  169.    and BITS_PER_WORD.  */
  170.  
  171. extern enum machine_mode byte_mode;
  172. extern enum machine_mode word_mode;
  173.  
  174. #endif /* not HAVE_MACHINE_MODES */
  175.